* {
  margin: 0%;
  padding: 0;
  box-sizing: border-box;
  font-family: "Gilroy";
}

html,
body {
  height: 100%;
  width: 100%;
  /* background-color: red; */
}
body {
  /* background-color: black; */
  background-color: #f8f8f8;
}

#main {
  height: 100%;
  width: 100%;
  background-color: #f8f8f8;
  position: relative;
  padding-top: 1px;
}

#nav {
  height: 12vh;
  width: 100%;
  /* background-color: red; */
  margin-top: 50px;
  border-top: 2px solid black;
  border-bottom: 2px solid black;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#nav h1 {
  width: 20%;
  height: 100%;
  /* background-color: blue; */
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Monument";
  font-size: 40px;
  letter-spacing: -1;
  position: relative;
}

#nav h1::after {
  content: "©";
  font-family: gilroy;
  font-weight: 100;
  font-size: 1.7vw;
  position: absolute;
  top: 10%;
  right: 3%;
  /* padding-bottom: 2vw; */
  /* background-color: red; */
}

#nav h1::before {
  content: "model management";
  color: #666;
  font-family: gilroy;
  font-weight: 400;
  font-size: 14px;
  position: absolute;
  bottom: 12%;
  right: 12%;
  letter-spacing: 0.1px;
}

#nav h2 {
  width: 22%;
  height: 100%;
  /* background-color: blue; */
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 2px solid black;
  font-size: 26 px;
  font-weight: 600;
}
#nav h2:nth-last-child(2) {
  width: 29%;
  /* background-color: red; */
}
#nav h2:nth-last-child(1) {
  width: 10%;
  /* background-color: red; */
}

#nav h3 {
  display: none;
}

#center {
  height: 80%;
  width: 100%;
  /* background-color: red; */
  padding: 4vw;
  position: relative;
}

#content {
  height: 100%;
  width: 100%;
  /* background-color: blue; */
  position: relative;
}

#content video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

#overlay {
  height: 55%;
  width: 100%;
  position: absolute;
  /* background-color: black; */
  bottom: 0%;
  padding: 3vw;
  color: white;
}

#over1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2vw;
}
#over1 h1 {
  font-family: "Monument";
  font-size: 2.5vw;
}

#over1 h2 {
  font-family: "Monument";
  font-size: 1vw;
  padding: 2vw 2.4vw;
  /* background-color: red; */
  border: 2px solid #ffff;
  border-radius: 50%;
}
hr {
  /* color: black; */
  border: 2px solid white;
  /* padding: 2vw; */
}

#over2 {
  padding: 1vw;
  display: flex;
  align-items: end;
  justify-content: space-between;
}

#over2 h4 {
  font-size: 1.3vw;
  font-weight: 500;
}

#scroll {
  height: 40vh;
  width: 100%;
  /* background-color: red; */
  white-space: nowrap;
  /* overflow-x:  hidden;
   overflow-y: hidden; */
  overflow: hidden;
}
#container {
  height: 100%;
  width: 100%;
  /* background-color: blue; */
  display: inline-block;
  padding: 2vw;
  animation-name: anime;
  animation-duration: 10s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

#scroll img {
  /* display: none; */
  height: 100%;
  border-radius: 50%;
  width: 15%;
  margin: 1vw;
  object-fit: cover;
  object-position: top;
}

@keyframes anime {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

#alphabet {
  /* background-color: red; */
  height: 10vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  /* gap: 1.5vw; */
  border-bottom: 2px solid black;
  border-top: 2px solid black;
  white-space: nowrap;
}

#alphabet h5 {
  font-size: 1.7vw;
  text-transform: uppercase;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 4px;
  border-bottom: 2px solid black;
}

#alphabet h6 {
  font-size: 1vw;
  text-transform: uppercase;
  border-radius: 50%;
  /* background-color: blue; */
  padding: 1vw;
}

#alphabet h6:hover {
  border: 2px solid black;
}

#page2 {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2vw 5vw;
}

#page2-part1 {
  height: 100%;
  width: 60%;
  /* background-color: red; */
  /* background-image: url(); */
  /* padding: 2vw; */
  background-size: cover;
  background-position: center;
  /* background-color: red; */
  padding: 0 6vw;
}
/* #pag2-part1 img{
    width:75% ;
    height:60%;
} */
#page2-part1 h2 {
  padding: 1vw;
  font-weight: bold;
  font-size: 2vw;
}

#page2-part1 h2 {
  margin-bottom: 10px;
  padding-bottom: 0%;
}

#page2-part2  {
  height: 75%;
  width: 100%;
  /* background-color: red;   */
  padding: 1px 65px;
}


button {
  padding: 10px 20px;
  background-color: transparent;
  border: 2px solid cyan;
  color: cyan;
  position: relative;
  /* transition: all linear 0.5s; */
  font-weight: 600;
  overflow: hidden;
}

button::after {
  content: "";
  height: 50px;
  width: 50px;
  background-color: cyan;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: all linear 0.5s;
  z-index: -1;
}

button:hover::after {
  /* content:  " hey";     */
  /* width: 100%; */
  transform: translate(-50%, -50%) scale(3);
  /* background-color: cyan; */
}

button:hover {
  color: black;
}

/* #page2-part1 h2{
     text-align: center;
     padding: 10px;
     left: 1vw;
     /* right: 50%; */
/* }*/

#page2-part2-text {
  display: flex;
  /* align-items: center; */
  justify-content: space-between;
}

#text1 {
  font-size: 0.7vw;
  width: 45%;
  /* background-color: red; */
  height: 50%;
}

#text2 {
  font-size: 0.9vw;
  width: 55%;
  /* background-color: blue; */
  padding: 1vh 1vw;
  /* overflow: hidden; */
}

#page3 {
  height: 100%;
  width: 100%;
  /* background-color: red; */
  padding: 5vw 4vw;
  position: relative;
}

#page3 > h1 {
  text-align: center;
  font-family: monument;
  text-transform: uppercase;
  font-size: 3vw;
  margin-bottom: 3vw;
}

.elem {
  height: 15vh;
  width: 100%;
  /* background-color: rebeccapurple; */
  border-top: 2px solid black;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0% 2vw;
  position: relative;
}

.elem h4 {
  font-size: 1.1vw;
  text-transform: uppercase;
  font-weight: 600;
  width: 6%;
  /* background-color: red; */
}

.elem img {
  height: 95px;
  width: 100px;
  position: absolute;
  border-radius: 50%;
  object-fit: cover;
  left: 12%;
  opacity: 0;
  transition: all ease-in 0.8s;
  /* background-color: red; */
}

.elem .elem-part2 {
  width: 50%;
  /* background-color: red; */
}

.elem-part2 h1 {
  font-size: 3vw;
  font-weight: 500;
}

.elem-part2 h5 {
  font-size: 1vw;
  font-weight: 600;
  text-transform: uppercase;
}
.elem:nth-last-child(1) {
  border-bottom: 2px solid black;
}

.elem:hover img {
  opacity: 1;
  left: 20%;
}
.elem:hover {
  background-color: #f0e7e7;
}

#marque {
  width: 100%;
  /* height: 20vh; */
  /* background-color: red; */
  padding: 0.5vw;
  white-space: nowrap;
  overflow-x: hidden;
  overflow-y: hidden;
  border-top: 2px solid black;
  border-bottom: 2px solid black;
}

#marque h1 {
  display: inline-block;
  font-size: 3vw;
  text-transform: uppercase;
  font-weight: 900;
  -webkit-text-stroke: 2px black;
  color: transparent;
  font-family: monument;
  margin-right: 16px;
  letter-spacing: 2px;
  animation: move;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  /* background-color: blue; */
}

@keyframes move {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 20px));
  }
}

#footer {
  width: 100%;
  height: 10%;
}

@media (max-width: 600px) {
  body {
    overflow-x: hidden;
  }

  #nav {
    height: 8vh;
    margin-top: 20px;
  }
  #nav h1 {
    justify-content: flex-start;
    font-size: 24px;
  }

  #nav h1::after {
    display: none;
  }

  #nav h1::before {
    display: none;
  }

  #nav h2 {
    display: none;
  }

  #nav h3 {
    display: block;
    width: 10%;
  }

  #center {
    height: 50%;
  }

  #content video {
    height: 100%;
    width: 100%;
  }

  #overlay {
    height: 40%;
    padding: 4vw;
  }

  #over1 {
    margin-bottom: 2vw;
  }

  #over1 h1 {
    font-size: 4vw;
  }

  #over2 {
    padding: 2vw;
  }

  #over2 h4 {
    font-size: 4.3vw;
    font-weight: 300;
  }

  #scroll {
  height: 13vh;
}


#scroll img {
  width: 14%;
}
  



#alphabet {
  /* background-color: red; */
  height: 5vh;
 
}

#alphabet h5 {
  font-size: 3vw;
 
}

#alphabet h6 {
  font-size: 2vw;
 
}

#page2 {
  
  height: 60%;
  
  padding: 2vw 1vw;
}

#page2-part1 {
  height: 100%;
  width: 60%;
  
  /* background-color: red; */
  /* background-image: url(); */
  /* padding: 2vw; */
  background-size: cover;
  background-position: center;
  /* background-color: red; */
  padding: 4vw 3vw;
}

#page2-part1 h2 {
  padding: 1vw;
  font-weight: 700;
  font-size: 2vw;
}

#page2-part1 h2 {
  margin-bottom: 10px;
  padding-bottom: 0%;
}

#page2-part2 {
        height: 85%;
        width: 71%;
        /* background-color: red; */
        padding: 1px 7px;
    }

#page2-part2 img {
  height: 70%;
  width: 60%;
  padding: 1vw 5vw;
}

#page2-part2-text {
  display: flex;
  flex-direction: column;
}

#text1 {
  font-size: 1.2vw;

 
}

#text2 {
  font-size: 1vw;
  font-weight: 500;
  padding: 1vw 1vw;
  
}

#page3 {
  height: 50%;
  width: 100%;
  /* background-color: red; */
  padding: 5vw 4vw;
  position: relative;
}

#page3 > h1 {
  text-align: center;
  font-family: monument;
  text-transform: uppercase;
  font-size: 5vw;
  margin-bottom: 3vw;
}

.elem {
  height: 9.5vh;
  width: 100%;
  /* background-color: rebeccapurple; */
  border-top: 2px solid black;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0% 2vw;
  position: relative;
}

.elem h4 {
  font-size: 2.6vw;
  text-transform: uppercase;
  font-weight: 600;
  width: 6%;
  /* background-color: red; */
}

.elem img {
  height: 60px;
    width: 54px;
  position: absolute;
  border-radius: 50%;
  object-fit: cover;
  left: 12%;
  opacity: 0;
  transition: all ease-in 0.8s;
  /* background-color: red; */
}


.elem-part2 h1 {
  font-size: 4vw;
  font-weight: 500;
}

.elem-part2 h5 {
  font-size: 1.9vw;
 
}
.elem:nth-last-child(1) {
  border-bottom: 2px solid black;
}

#marque h1 {
  
  font-size: 5vw;
  
}





}
